home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / guile / 1.8 / lang / elisp / primitives / buffers.scm next >
Encoding:
Text File  |  2008-12-17  |  403 b   |  17 lines

  1. (define-module (lang elisp primitives buffers)
  2.   #:use-module (ice-9 optargs)
  3.   #:use-module (lang elisp internals fset))
  4.  
  5. (fset 'buffer-disable-undo
  6.       (lambda* (#:optional buffer)
  7.     'unimplemented))
  8.  
  9. (fset 're-search-forward
  10.       (lambda* (regexp #:optional bound noerror count)
  11.     'unimplemented))
  12.  
  13. (fset 're-search-backward
  14.       (lambda* (regexp #:optional bound noerror count)
  15.     'unimplemented))
  16.  
  17.